home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Explorer Options 3.xpl < prev    next >
Text File  |  2002-04-12  |  2KB  |  61 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Explorer\Settings (Advanced)"
  5. "NAME"="Explorer Separate Proccess"
  6. "WARNING"="1"
  7. "OSVERSION"="0101011"
  8. "VERSION"="1.30"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Execute Explorer as seperate process"
  11. "DESCRIPTION 1"="In Windows, Explorer is used as file manager and as the shell (the interface to Windows). Because of this, crashing the file manager also crashes your shell."
  12. "DESCRIPTION 2"="By activating this option, Windows uses an seperate process for each task which is a good idea if stability is your goal, but a bad one if you have few memory (two programs use more memory)."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Found by the way of "martin" <ingenue007@hotmail.com>"
  17. "COMMENT 2"="Thanks to Michael Kairys [mkairys@mediaone.net] for the W2K fix."
  18. "COMMENT 3"="Thanks to Jeanne Souders [jsouders1@cox.rr.com] for the W9x fix."
  19.  
  20. sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\SeparateProcess" 'DW
  21. 'sV2="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\DesktopProcess" 'DW 1 = seperated
  22.  
  23. Sub Plugin_Initialize 
  24.  sP=sV1
  25. ' If GetWinVer=4 or GetWinVer>5 then 'Windows 2000, and anything above WME
  26. '    sP=sV2
  27. ' else
  28. '    sP=sV1
  29. ' end if
  30.  
  31.  s=RegReadValue(sP)
  32.  if IsEmpty(s)=false then 
  33.     if s=1 then SetUIElement 1,true 
  34.  end if
  35. End Sub
  36.  
  37.  
  38. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  39.  sP=sV1
  40.  b=GetUIElement(1)
  41.  
  42. ' if GetWinVer=4 then
  43. '    sP=sV2
  44. ' else
  45. '    sP=sV1
  46. ' end if
  47.  
  48.  if b=true then
  49.     Call RegWriteValue(sP,"1",2)
  50.  else
  51.     s=RegReadValue(sP)
  52.     if IsEmpty(s)=false then RegDeleteValue(sP)
  53.  end if
  54.  
  55.  
  56.  Call Restart()
  57. End Sub
  58.  
  59. Sub Plugin_Terminate 
  60. End Sub
  61.